home *** CD-ROM | disk | FTP | other *** search
/ Developer CD Series 2000 November: Tool Chest / Dev.CD Nov 00 TC Disk 1.toast / Tool Chest / Testing & Debugging / 4PM 5.0 / 4PMLibrary.h < prev   
Encoding:
C/C++ Source or Header  |  1999-05-25  |  600 b   |  32 lines  |  [TEXT/CWIE]

  1. /*
  2.      File:        4PMLibrary.h
  3.  
  4.      Contains:    4PM library calls.
  5.  
  6.      Version:    Technology:    System 8.0
  7.                  Release:    4PMLibrary 1.0
  8.  
  9.      Copyright:    ©1999 by Apple Computer, Inc., all rights reserved.
  10.   
  11. */
  12. #ifndef __4PMLIBRARY__
  13. #define __4PMLIBRARY__
  14.  
  15.  
  16. #ifdef __cplusplus
  17. extern    "C"    {
  18. #endif
  19.  
  20. short    Init4PMLibrary(void);    /* call this before using Start4PM/Stop4PM calls */
  21. void    Delete4PMLibrary(void); /* call this before app quits so 4PM can clean up */
  22.  
  23. void    Start4PM(void);            /* sets counters running */
  24. void    Stop4PM(void);            /* stops counters */
  25.  
  26. #ifdef __cplusplus
  27. }
  28. #endif
  29.  
  30.  
  31. #endif /* __4PMLIBRARY__ */
  32.